*{ margin: 0; padding: 0; box-sizing: border-box; }
body{
    font: 12px/24px "Microsoft YaHei","\5b8b\4f53","PingFang SC","Lantinghei SC",arial,sans-serif,tahoma;
    text-align: center;
    color: #333;
}

input{  
	background:none;  
	outline:none;  
	border:none;
}
input:focus{   
	border:none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*** 消除input元素 type="number" 时默认的 加减按钮---moz版*/
input[type=number] {
    -moz-appearance:textfield;
}
h1, h2, h3, h4, h5, h6, th { font-size: 100%; font-weight: normal; }
img{ border: none; vertical-align: middle; }
a, a:active, a:focus, a:hover, a:visited {text-decoration: none; color: #fff; }
ul, ol { list-style: none; }
.clear{ zoom:1; }
.clear:after{ content:'.';width: 0; height: 0; visibility: hidden; display: block; clear: both; overflow: hidden; }
.fl { float: left; }
.fr { float: right; }
.tl { text-align: left; }
.tc { text-align: center; }
.tr { text-align: right; }
.hidden{ display: none;}
.show{ display: flex; flex-wrap: wrap;}
.ellipse { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/*清除浮动*/
.clearfix{*zoom: 1;}
.clearfix:after{display: table; clear: both; content: '';}
.mt-32{margin-bottom: 32px;}
.acea-row{display:flex;flex-wrap:wrap;}
.acea-row.row-top{align-items:flex-start;}
.acea-row.row-middle{align-items:center;}
.acea-row.row-bottom{align-items:flex-end;}
.acea-row.row-left{justify-content:flex-start;}
.acea-row.row-center{justify-content:center;}
.acea-row.row-right{justify-content:flex-end;}
.acea-row.row-between{justify-content:space-between;}
.acea-row.row-around{justify-content:space-around;}
.acea-row.row-column{flex-direction:column;}
.acea-row.row-column-between{flex-direction:column;justify-content:space-between;}
.acea-row.row-column-around{flex-direction:column;justify-content:space-around;}
.acea-row.row-center-wrapper{align-items:center;justify-content:center;}
.acea-row.row-between-wrapper{align-items:center;justify-content:space-between;}